home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n16.arc / FROMA.BAT < prev    next >
DOS Batch File  |  1989-08-30  |  296b  |  21 lines

  1.  
  2.  
  3. REM      -------------------
  4. REM      :    FROMA.BAT    :
  5. REM      -------------------
  6.  
  7. REM      Copy several files from drive A:
  8.  
  9. ECHO OFF
  10. IF NOT "%1" == "" GOTO NextFile
  11. COPY a:*.*
  12. SHIFT
  13. :NextFile
  14. IF "%1" == "" quit
  15. COPY A:%1
  16. SHIFT
  17. GOTO NextFile
  18. REM   End of FROMA.BAT
  19.  
  20.  
  21.